program ramdon;
var
x,i: integer;


begin
randomize;
for i:=0 to 20 do
begin
x:=random (10) + 1;

writeln (x);
end;
readln;

end.